home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Database / AssociationExample / Controller.h < prev    next >
Text File  |  1995-06-12  |  685b  |  30 lines

  1. /* Controller.h:
  2.  * You may freely copy, distribute, and reuse the code in this example.
  3.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  4.  * fitness for any particular use.
  5.  *
  6.  * Written by Mai Nguyen, NeXT Developer Support
  7.  *
  8.  */
  9.  
  10. #import <appkit/appkit.h>
  11.  
  12. @class QualifiedAssociation;
  13.  
  14. @interface Controller:Object
  15. {
  16.     id    theWindow;            /* The main application window */
  17.     id    storeTable;
  18.     id    quantityField;
  19.     QualifiedAssociation *  newAssociation;
  20.     DBFetchGroup *    detailFetchGroup;
  21.     DBQualifier *    dbQualifier;
  22.     
  23. }
  24.  
  25. - appDidInit:sender;
  26. - changeQualifier:sender;
  27. - (BOOL)db:aDb willEvaluateString:(const unsigned char*)aString
  28.      usingBinder:aBinder;
  29.  
  30. @end